home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / ixemul-complete / ixemul / stdlib / abort.c next >
C/C++ Source or Header  |  1996-05-08  |  183b  |  12 lines

  1. #define _KERNEL
  2. #include "ixemul.h"
  3.  
  4. void abort (void)
  5. {
  6.   syscall (SYS_kill, 0, SIGABRT);
  7.   /* if this should be caught, do exit directly... */
  8.  
  9.   ix_panic ("ABORT!");
  10.   exit(20);
  11. }
  12.